home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer (Italian) 30
/
PC Gamer IT CD 30 1-2.iso
/
MOTS
/
GAMEDATA
/
RESOURCE
/
JKMRES.GOO
/
cog_exp_hrail.cog
< prev
next >
Wrap
Text File
|
1998-02-25
|
696b
|
37 lines
# Jedi Knight Missions Cog Script
#
# EXP_HRAIL.COG
#
# EXPLOSION SCRIPT - Homing Rail Det
#
# Signals KYLE_M.COG to signal all the other clients to remove this
# ghost seeking rail det.
#
# [RF]
#
# (C) 1997 LucasArts Entertainment Co. All Rights Reserved
symbols
template exp=+raildet_exp local
message created
message timer
end
# ========================================================================================
code
created:
SendTrigger(GetLocalPlayerThing(), 3503, GetUserData(GetThingParent(GetSenderRef())), GetSenderRef(), 0, 0);
SetTimerEx(0.5, 0, GetSenderRef(), 0);
return;
timer:
DestroyThing(GetParam(0));
return;
end